From 9ed37a41c1c1f5e9c11f8a1b1cc84e30edfbccbc Mon Sep 17 00:00:00 2001 From: Mike Baker Date: Sun, 12 Feb 2006 16:41:54 +0000 Subject: [PATCH] remove; causes errors SVN-Revision: 3226 --- .../busybox/patches/340-find_type.patch | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 openwrt/package/busybox/patches/340-find_type.patch diff --git a/openwrt/package/busybox/patches/340-find_type.patch b/openwrt/package/busybox/patches/340-find_type.patch deleted file mode 100644 index 3ea4e9df34..0000000000 --- a/openwrt/package/busybox/patches/340-find_type.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- busybox-1.00.orig/findutils/find.c 2004-03-15 03:28:37.000000000 -0500 -+++ busybox-1.00/findutils/find.c 2006-02-12 06:52:21.245414250 -0500 -@@ -80,7 +80,7 @@ - } - #ifdef CONFIG_FEATURE_FIND_TYPE - if (type_mask != 0) { -- if (!((statbuf->st_mode & S_IFMT) == type_mask)) -+ if (!((statbuf->st_mode & S_IFMT) & type_mask)) - goto no_match; - } - #endif -@@ -197,7 +197,7 @@ - } else if (strcmp(argv[i], "-type") == 0) { - if (++i == argc) - bb_error_msg_and_die(msg_req_arg, "-type"); -- type_mask = find_type(argv[i]); -+ type_mask |= find_type(argv[i]); - #endif - #ifdef CONFIG_FEATURE_FIND_PERM - } else if (strcmp(argv[i], "-perm") == 0) { -- 2.30.2